9ef9b708f872a409e0ea0b35880d0ec7c93f4421,source/com/intellij/psi/impl/source/PsiJavaFileBaseImpl.java,PsiJavaFileBaseImpl,getImportList,#,104

Before Change



  @NotNull
  public PsiImportList getImportList() {
    final PsiJavaFileStub stub = (PsiJavaFileStub)getStub();
    if (stub != null) {
      return stub.getChildrenByType(JavaStubElementTypes.IMPORT_LIST, PsiImportList.ARRAY_FACTORY)[0];
    }

After Change



  @NotNull
  public PsiImportList getImportList() {
    final StubElement<?> stub = getStub();
    if (stub != null) {
      return stub.getChildrenByType(JavaStubElementTypes.IMPORT_LIST, PsiImportList.ARRAY_FACTORY)[0];
    }